200
How do I arrange my columns on multiple lines

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.HeaderHeight = 32
// oComboBox.Columns.Add("").HTMLCaption = "Line 1<br>Line 2"
var_Column = oComboBox.Columns.Add("")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.HTMLCaption = "Line 1<br>Line 2"]
endwith

199
How can I display all cells using HTML format

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("HTML").Def(17) = 1
var_Column = oComboBox.Columns.Add("HTML")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(17) = 1]
endwith
oComboBox.Items.AddItem("<font ;12>T</font>his <b>is</b> an <a>html</a> <font Tahoma><fgcolor=FF0000>text</fgcolor></font>.")

198
How can I display all cells using multiple lines

local oComboBox,var_Column,var_Column1,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("MultipleLine").Def(16) = false
var_Column = oComboBox.Columns.Add("MultipleLine")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(16) = False]
endwith
// oComboBox.Columns.Add("SingleLine").Def(16) = true
var_Column1 = oComboBox.Columns.Add("SingleLine")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.Def(16) = True]
endwith
var_Items = oComboBox.Items
	// var_Items.CellCaption(var_Items.AddItem("This is a bit of long text that should break the line"),1) = "this is a bit of long text that's displayed on a single line"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(AddItem("This is a bit of long text that should break the line"),1) = "this is a bit of long text that's displayed on a single line"]
	endwith

197
How do change the vertical alignment for all cells in the column

local oComboBox,var_Column,var_Column1,var_Items,var_Items1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("MultipleLine").Def(16) = false
var_Column = oComboBox.Columns.Add("MultipleLine")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(16) = False]
endwith
// oComboBox.Columns.Add("VAlign").Def(6) = 2
var_Column1 = oComboBox.Columns.Add("VAlign")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.Def(6) = 2]
endwith
var_Items = oComboBox.Items
	// var_Items.CellCaption(var_Items.AddItem("This is a bit of long text that should break the line"),1) = "bottom"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(AddItem("This is a bit of long text that should break the line"),1) = "bottom"]
	endwith
var_Items1 = oComboBox.Items
	// var_Items1.CellCaption(var_Items1.AddItem("This is a bit of long text that should break the line"),1) = "bottom"
	with (oComboBox)
		TemplateDef = [dim var_Items1]
		TemplateDef = var_Items1
		Template = [var_Items1.CellCaption(AddItem("This is a bit of long text that should break the line"),1) = "bottom"]
	endwith

196
How do change the foreground color for all cells in the column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("ForeColor").Def(5) = 255
var_Column = oComboBox.Columns.Add("ForeColor")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(5) = 255]
endwith
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

195
How do change the background color for all cells in the column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("BackColor").Def(4) = 255
var_Column = oComboBox.Columns.Add("BackColor")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(4) = 255]
endwith
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

194
How do I show buttons for all cells in the column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
var_Column = oComboBox.Columns.Add("Button")
	// var_Column.Def(2) = true
	with (oComboBox)
		TemplateDef = [dim var_Column]
		TemplateDef = var_Column
		Template = [var_Column.Def(2) = True]
	endwith
	// var_Column.Def(3) = true
	with (oComboBox)
		TemplateDef = [dim var_Column]
		TemplateDef = var_Column
		Template = [var_Column.Def(3) = True]
	endwith
oComboBox.Items.AddItem(" Button 1 ")
oComboBox.Items.AddItem(" Button 2 ")

193
How do I show buttons for all cells in the column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Button").Def(2) = true
var_Column = oComboBox.Columns.Add("Button")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(2) = True]
endwith
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

192
How do I display radio buttons for all cells in the column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Radio").Def(1) = true
var_Column = oComboBox.Columns.Add("Radio")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(1) = True]
endwith
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

191
How do I display checkboxes for all cells in the column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Check").Def(0) = true
var_Column = oComboBox.Columns.Add("Check")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(0) = True]
endwith
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

190
How can I display a tooltip when the cursor hovers the column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("tooltip").ToolTip = "This is a bit of text that is shown when user hovers the column."
var_Column = oComboBox.Columns.Add("tooltip")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.ToolTip = "This is a bit of text that is shown when user hovers the column."]
endwith

189
Is there any function to assign a key to a column instead using its name or capion

local oComboBox,var_Column,var_Column1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Data").Key = "DKey"
var_Column = oComboBox.Columns.Add("Data")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Key = "DKey"]
endwith
// oComboBox.Columns.Item("DKey").Caption = "new caption"
var_Column1 = oComboBox.Columns.Item("DKey")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.Caption = "new caption"]
endwith

188
Is there any function to assign any extra data to a column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Data").Data = "your extra data"
var_Column = oComboBox.Columns.Add("Data")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Data = "your extra data"]
endwith

187
By default, the column gets sorted descending, when I first click its header. How can I change so the column gets sorted ascending when the user first clicks the column's header

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Sort").DefaultSortOrder = true
var_Column = oComboBox.Columns.Add("Sort")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.DefaultSortOrder = True]
endwith

186
How can I specify the maximum width for the column, if I use WidthAutoResize property

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
var_Column = oComboBox.Columns.Add("Auto")
	var_Column.WidthAutoResize = true
	var_Column.MinWidthAutoResize = 32
	var_Column.MaxWidthAutoResize = 128
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

185
How can I specify the minimum width for the column, if I use WidthAutoResize property

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
var_Column = oComboBox.Columns.Add("Auto")
	var_Column.WidthAutoResize = true
	var_Column.MinWidthAutoResize = 32
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

184
Is there any option to resize the column based on its data, captions

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("A").WidthAutoResize = true
var_Column = oComboBox.Columns.Add("A")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.WidthAutoResize = True]
endwith
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

183
How can I align the icon in the column's header in the center

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
var_Column = oComboBox.Columns.Add("")
	var_Column.HeaderImage = 1
	var_Column.HeaderImageAlignment = 1

182
How do I align the icon in the column's header to the right

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
var_Column = oComboBox.Columns.Add("ColumnName")
	var_Column.HeaderImage = 1
	var_Column.HeaderImageAlignment = 2

181
How do I show or hide the sorting icons, but still need sorting

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Sorted").SortOrder = 1
var_Column = oComboBox.Columns.Add("Sorted")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.SortOrder = 1]
endwith
oComboBox.Columns.Item(0).DisplaySortIcon = false

180
How do I enable or disable the entire column

local oComboBox,var_Column,var_Items,var_Items1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Columns.Add("C1")
// oComboBox.Columns.Add("Disabled").Enabled = false
var_Column = oComboBox.Columns.Add("Disabled")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Enabled = False]
endwith
var_Items = oComboBox.Items
	// var_Items.CellCaption(var_Items.AddItem(0),1) = "0.1"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(AddItem(0),1) = "0.1"]
	endwith
var_Items1 = oComboBox.Items
	// var_Items1.CellCaption(var_Items1.AddItem(1),1) = "1.1"
	with (oComboBox)
		TemplateDef = [dim var_Items1]
		TemplateDef = var_Items1
		Template = [var_Items1.CellCaption(AddItem(1),1) = "1.1"]
	endwith

179
How do I disable drag and drop columns

local oComboBox,var_Column,var_Column1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("C1").AllowDragging = false
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.AllowDragging = False]
endwith
// oComboBox.Columns.Add("C2").AllowDragging = false
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.AllowDragging = False]
endwith

178
How do I disable resizing a column at runtime

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Unsizable").AllowSizing = false
var_Column = oComboBox.Columns.Add("Unsizable")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.AllowSizing = False]
endwith
oComboBox.Columns.Add("C2")
oComboBox.Columns.Add("C3")
oComboBox.Columns.Add("C4")

177
How can I align the column to the right, and its caption too

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
var_Column = oComboBox.Columns.Add("Column")
	var_Column.Alignment = 2
	var_Column.HeaderAlignment = 2
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

176
How can I align the column to the right

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Column").Alignment = 2
var_Column = oComboBox.Columns.Add("Column")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Alignment = 2]
endwith
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

175
How do I change the column's caption

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Column").Caption = "new caption"
var_Column = oComboBox.Columns.Add("Column")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Caption = "new caption"]
endwith

174
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

local oComboBox,var_Items,var_Items1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [FormatAnchor(False) = "<b><u><fgcolor=880000> </fgcolor></u></b>"] // oComboBox.FormatAnchor(false) = "<b><u><fgcolor=880000> </fgcolor></u></b>"
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	// var_Items.CellCaptionFormat(var_Items.AddItem("Just an <a1>anchor</a> element ..."),0) = 1
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaptionFormat(AddItem("Just an <a1>anchor</a> element ..."),0) = 1]
	endwith
var_Items1 = oComboBox.Items
	// var_Items1.CellCaptionFormat(var_Items1.AddItem("Just another <a2>anchor</a> element ..."),0) = 1
	with (oComboBox)
		TemplateDef = [dim var_Items1]
		TemplateDef = var_Items1
		Template = [var_Items1.CellCaptionFormat(AddItem("Just another <a2>anchor</a> element ..."),0) = 1]
	endwith
oComboBox.Items.AddItem("next item")

173
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

local oComboBox,var_Items,var_Items1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [FormatAnchor(True) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"] // oComboBox.FormatAnchor(true) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>"
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	// var_Items.CellCaptionFormat(var_Items.AddItem("Just an <a1>anchor</a> element ..."),0) = 1
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaptionFormat(AddItem("Just an <a1>anchor</a> element ..."),0) = 1]
	endwith
var_Items1 = oComboBox.Items
	// var_Items1.CellCaptionFormat(var_Items1.AddItem("Just another <a2>anchor</a> element ..."),0) = 1
	with (oComboBox)
		TemplateDef = [dim var_Items1]
		TemplateDef = var_Items1
		Template = [var_Items1.CellCaptionFormat(AddItem("Just another <a2>anchor</a> element ..."),0) = 1]
	endwith

172
Can I change the font for the tooltip

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ToolTipDelay = 1
oComboBox.ToolTipWidth = 364
// oComboBox.Columns.Add("tootip").ToolTip = "<br><font Tahoma;14>this</font> is a tooltip assigned to a column<br>"
var_Column = oComboBox.Columns.Add("tootip")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.ToolTip = "<br><font Tahoma;14>this</font> is a tooltip assigned to a column<br>"]
endwith

171
Can I change the font for the tooltip

local oComboBox,var_Column,var_StdFont

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ToolTipDelay = 1
var_StdFont = oComboBox.ToolTipFont
	var_StdFont.Name = "Tahoma"
	var_StdFont.Size = 14
oComboBox.ToolTipWidth = 364
// oComboBox.Columns.Add("tootip").ToolTip = "this is a tooltip assigned to a column"
var_Column = oComboBox.Columns.Add("tootip")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.ToolTip = "this is a tooltip assigned to a column"]
endwith

170
Can I change the order of the buttons in the scroll bar

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [ScrollOrderParts(1) = "t,l,r"] // oComboBox.ScrollOrderParts(1) = "t,l,r"
oComboBox.Template = [ScrollOrderParts(0) = "t,l,r"] // oComboBox.ScrollOrderParts(0) = "t,l,r"

169
The thumb size seems to be very small. Can I make it bigger

local oComboBox,var_Column,var_Column1,var_Column2

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ColumnAutoResize = false
// oComboBox.Columns.Add("C1").Width = 256
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 256]
endwith
// oComboBox.Columns.Add("C2").Width = 256
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.Width = 256]
endwith
// oComboBox.Columns.Add("C3").Width = 256
var_Column2 = oComboBox.Columns.Add("C3")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.Width = 256]
endwith
oComboBox.Template = [ScrollThumbSize(1) = 64] // oComboBox.ScrollThumbSize(1) = 64

168
How can I display my text on the scroll bar, using a different font

local oComboBox,var_Column,var_Column1,var_Column2

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [ScrollPartCaption(1,256) = "This is <s><font Tahoma;12> just </font></s> text"] // oComboBox.ScrollPartCaption(1,256) = "This is <s><font Tahoma;12> just </font></s> text"
oComboBox.ColumnAutoResize = false
oComboBox.ScrollHeight = 20
// oComboBox.Columns.Add("C1").Width = 256
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 256]
endwith
// oComboBox.Columns.Add("C2").Width = 256
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.Width = 256]
endwith
// oComboBox.Columns.Add("C3").Width = 256
var_Column2 = oComboBox.Columns.Add("C3")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.Width = 256]
endwith

167
How can I display my text on the scroll bar, using a different font

local oComboBox,var_Column,var_Column1,var_Column2,var_StdFont

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [ScrollPartCaption(1,256) = "This is just a text"] // oComboBox.ScrollPartCaption(1,256) = "This is just a text"
// oComboBox.ScrollFont(1).Size = 12
var_StdFont = oComboBox.ScrollFont(1)
with (oComboBox)
	TemplateDef = [dim var_StdFont]
	TemplateDef = var_StdFont
	Template = [var_StdFont.Size = 12]
endwith
oComboBox.ColumnAutoResize = false
oComboBox.ScrollHeight = 20
// oComboBox.Columns.Add("C1").Width = 256
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 256]
endwith
// oComboBox.Columns.Add("C2").Width = 256
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.Width = 256]
endwith
// oComboBox.Columns.Add("C3").Width = 256
var_Column2 = oComboBox.Columns.Add("C3")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.Width = 256]
endwith

166
How can I display my text on the scroll bar

local oComboBox,var_Column,var_Column1,var_Column2

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [ScrollPartCaption(1,256) = "this is just a text"] // oComboBox.ScrollPartCaption(1,256) = "this is just a text"
oComboBox.ColumnAutoResize = false
// oComboBox.Columns.Add("C1").Width = 256
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 256]
endwith
// oComboBox.Columns.Add("C2").Width = 256
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.Width = 256]
endwith
// oComboBox.Columns.Add("C3").Width = 256
var_Column2 = oComboBox.Columns.Add("C3")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.Width = 256]
endwith

165
How do I enlarge or change the size of the control's scrollbars

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ScrollHeight = 18
oComboBox.ScrollWidth = 18
oComboBox.ScrollButtonWidth = 18
oComboBox.ScrollButtonHeight = 18

164
How do I assign a tooltip to a scrollbar

local oComboBox,var_Column,var_Column1,var_Column2

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [ScrollToolTip(1) = "This is a tooltip being shown when you click and drag the thumb in the horizontal scroll bar"] // oComboBox.ScrollToolTip(1) = "This is a tooltip being shown when you click and drag the thumb in the horizontal scroll bar"
oComboBox.ColumnAutoResize = false
// oComboBox.Columns.Add("C1").Width = 256
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 256]
endwith
// oComboBox.Columns.Add("C2").Width = 256
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.Width = 256]
endwith
// oComboBox.Columns.Add("C3").Width = 256
var_Column2 = oComboBox.Columns.Add("C3")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.Width = 256]
endwith

163
How do I assign an icon to the button in the scrollbar

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Template = [ScrollPartVisible(1,32768) = True] // oComboBox.ScrollPartVisible(1,32768) = true
oComboBox.Template = [ScrollPartCaption(1,32768) = "<img>1</img>"] // oComboBox.ScrollPartCaption(1,32768) = "<img>1</img>"
oComboBox.ScrollHeight = 18
oComboBox.ScrollButtonWidth = 18

162
I need to add a button in the scroll bar. Is this possible

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [ScrollPartVisible(1,32768) = True] // oComboBox.ScrollPartVisible(1,32768) = true
oComboBox.Template = [ScrollPartCaption(1,32768) = "1"] // oComboBox.ScrollPartCaption(1,32768) = "1"

161
Can I display an additional buttons in the scroll bar

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = [ScrollPartVisible(1,32768) = True] // oComboBox.ScrollPartVisible(1,32768) = true
oComboBox.Template = [ScrollPartVisible(1,16384) = True] // oComboBox.ScrollPartVisible(1,16384) = true
oComboBox.Template = [ScrollPartVisible(1,1) = True] // oComboBox.ScrollPartVisible(1,1) = true
oComboBox.Template = [ScrollPartVisible(1,2) = True] // oComboBox.ScrollPartVisible(1,2) = true

160
How can I display a custom size picture to a cell or item

local oComboBox,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.DefaultItemHeight = 48
oComboBox.Columns.Add("C1")
var_Items = oComboBox.Items
	// var_Items.CellPicture(var_Items.AddItem("Text"),0) = oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellPicture(AddItem("Text"),0) = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")]
	endwith

159
How can I display a multiple pictures to a cell or item

local oComboBox,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.DefaultItemHeight = 48
oComboBox.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oComboBox.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
oComboBox.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oComboBox.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
oComboBox.Columns.Add("C1")
var_Items = oComboBox.Items
	// var_Items.CellCaptionFormat(var_Items.AddItem("<img>pic1</img> Text <img>pic2</img> another text ..."),0) = 1
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaptionFormat(AddItem("<img>pic1</img> Text <img>pic2</img> another text ..."),0) = 1]
	endwith

158
How do I change the column's foreground color for numbers between an interval - Range

local oComboBox,var_ConditionalFormat,var_Items,var_Items1,var_Items2,var_Items3

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("%0 >= 2 and %0 <= 10")
	var_ConditionalFormat.Bold = true
	var_ConditionalFormat.ForeColor = 0xff
	var_ConditionalFormat.ApplyTo = 1 /*0x1 | */
oComboBox.Columns.Add("N1")
oComboBox.Columns.Add("N2")
var_Items = oComboBox.Items
	// var_Items.CellCaption(var_Items.AddItem(1),1) = 2
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(AddItem(1),1) = 2]
	endwith
var_Items1 = oComboBox.Items
	// var_Items1.CellCaption(var_Items1.AddItem(3),1) = 3
	with (oComboBox)
		TemplateDef = [dim var_Items1]
		TemplateDef = var_Items1
		Template = [var_Items1.CellCaption(AddItem(3),1) = 3]
	endwith
var_Items2 = oComboBox.Items
	// var_Items2.CellCaption(var_Items2.AddItem(10),1) = 11
	with (oComboBox)
		TemplateDef = [dim var_Items2]
		TemplateDef = var_Items2
		Template = [var_Items2.CellCaption(AddItem(10),1) = 11]
	endwith
var_Items3 = oComboBox.Items
	// var_Items3.CellCaption(var_Items3.AddItem(13),1) = 31
	with (oComboBox)
		TemplateDef = [dim var_Items3]
		TemplateDef = var_Items3
		Template = [var_Items3.CellCaption(AddItem(13),1) = 31]
	endwith
oComboBox.SearchColumnIndex = 1

157
How do I change the item's foreground color for numbers between an interval - Range

local oComboBox,var_ConditionalFormat

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.ConditionalFormats.Add("%0 >= 2 and %0 <= 10").ForeColor = 0xff
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("%0 >= 2 and %0 <= 10")
with (oComboBox)
	TemplateDef = [dim var_ConditionalFormat]
	TemplateDef = var_ConditionalFormat
	Template = [var_ConditionalFormat.ForeColor = 255]
endwith
oComboBox.Columns.Add("Numbers")
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)
oComboBox.Items.AddItem(10)
oComboBox.Items.AddItem(20)

156
How do I change the item's background color for numbers less than a value

local oComboBox,var_ConditionalFormat

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.ConditionalFormats.Add("%0 < 10").BackColor = 0xff
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("%0 < 10")
with (oComboBox)
	TemplateDef = [dim var_ConditionalFormat]
	TemplateDef = var_ConditionalFormat
	Template = [var_ConditionalFormat.BackColor = 255]
endwith
oComboBox.Columns.Add("Numbers")
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)
oComboBox.Items.AddItem(10)
oComboBox.Items.AddItem(20)

155
How do I underline the numbers greater than a value

local oComboBox,var_ConditionalFormat

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.ConditionalFormats.Add("%0 >= 10").Underline = true
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("%0 >= 10")
with (oComboBox)
	TemplateDef = [dim var_ConditionalFormat]
	TemplateDef = var_ConditionalFormat
	Template = [var_ConditionalFormat.Underline = True]
endwith
oComboBox.Columns.Add("Numbers")
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)
oComboBox.Items.AddItem(10)
oComboBox.Items.AddItem(20)

154
How do I highlight in italic the numbers greater than a value

local oComboBox,var_ConditionalFormat

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.ConditionalFormats.Add("%0 >= 10").StrikeOut = true
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("%0 >= 10")
with (oComboBox)
	TemplateDef = [dim var_ConditionalFormat]
	TemplateDef = var_ConditionalFormat
	Template = [var_ConditionalFormat.StrikeOut = True]
endwith
oComboBox.Columns.Add("Numbers")
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)
oComboBox.Items.AddItem(10)
oComboBox.Items.AddItem(20)

153
How do I highlight in italic the numbers greater than a value

local oComboBox,var_ConditionalFormat

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.ConditionalFormats.Add("%0 >= 10").Italic = true
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("%0 >= 10")
with (oComboBox)
	TemplateDef = [dim var_ConditionalFormat]
	TemplateDef = var_ConditionalFormat
	Template = [var_ConditionalFormat.Italic = True]
endwith
oComboBox.Columns.Add("Numbers")
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)
oComboBox.Items.AddItem(10)
oComboBox.Items.AddItem(20)

152
How do I highlight in bold the numbers greater than a value

local oComboBox,var_ConditionalFormat

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.ConditionalFormats.Add("%0 >= 10").Bold = true
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("%0 >= 10")
with (oComboBox)
	TemplateDef = [dim var_ConditionalFormat]
	TemplateDef = var_ConditionalFormat
	Template = [var_ConditionalFormat.Bold = True]
endwith
oComboBox.Columns.Add("Numbers")
oComboBox.Items.AddItem(1)
oComboBox.Items.AddItem(2)
oComboBox.Items.AddItem(10)
oComboBox.Items.AddItem(20)

151
Can I use your EBN files to change the visual appearance for +/- expand - collapse buttons

local h,oComboBox,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.LinesAtRoot = 1
oComboBox.HasButtons = 4
oComboBox.Template = [HasButtonsCustom(0) = 16777216] // oComboBox.HasButtonsCustom(false) = 16777216
oComboBox.Template = [HasButtonsCustom(1) = 33554432] // oComboBox.HasButtonsCustom(true) = 33554432
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,null,"Child 1")
	var_Items.InsertItem(h,null,"Child 2")
	// var_Items.ExpandItem(h) = true
	with (oComboBox)
		TemplateDef = [dim var_Items,h]
		TemplateDef = var_Items
		TemplateDef = h
		Template = [var_Items.ExpandItem(h) = True]
	endwith
	h = var_Items.AddItem("Root 2")
	var_Items.InsertItem(h,null,"Child")

150
Can I use your EBN files to change the visual appearance for radio buttons

local oComboBox,var_Column,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.Template = [RadioImage(0) = 16777216] // oComboBox.RadioImage(false) = 16777216
oComboBox.Template = [RadioImage(1) = 33554432] // oComboBox.RadioImage(true) = 33554432
// oComboBox.Columns.Add("Radio").Def(1) = true
var_Column = oComboBox.Columns.Add("Radio")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(1) = True]
endwith
var_Items = oComboBox.Items
	var_Items.AddItem("Radio 1")
	// var_Items.CellState(var_Items.AddItem("Radio 2"),0) = 1
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellState(AddItem("Radio 2"),0) = 1]
	endwith
	var_Items.AddItem("Radio 3")

149
Can I use your EBN files to change the visual appearance for checkbox cells

local oComboBox,var_Column,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.Template = [CheckImage(0) = 16777216] // oComboBox.CheckImage(0) = 16777216
oComboBox.Template = [CheckImage(1) = 33554432] // oComboBox.CheckImage(1) = 33554432
// oComboBox.Columns.Add("Check").Def(0) = true
var_Column = oComboBox.Columns.Add("Check")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(0) = True]
endwith
var_Items = oComboBox.Items
	var_Items.AddItem("Check 1")
	// var_Items.CellState(var_Items.AddItem("Check 2"),0) = 1
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellState(AddItem("Check 2"),0) = 1]
	endwith

148
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

local oComboBox,var_Column,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
oComboBox.Template = [Background(388) = 16777216] // oComboBox.Background(388) = 0x1000000
oComboBox.Template = [Background(389) = 33554432] // oComboBox.Background(389) = 0x2000000
oComboBox.Template = [Background(391) = 50331648] // oComboBox.Background(391) = 0x3000000
oComboBox.Template = [Background(260) = 16777216] // oComboBox.Background(260) = 0x1000000
oComboBox.Template = [Background(261) = 33554432] // oComboBox.Background(261) = 0x2000000
oComboBox.Template = [Background(263) = 50331648] // oComboBox.Background(263) = 0x3000000
oComboBox.ColumnAutoResize = false
oComboBox.ScrollBySingleLine = true
// oComboBox.Columns.Add("S").Width = 483
var_Column = oComboBox.Columns.Add("S")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 483]
endwith
var_Items = oComboBox.Items
	// var_Items.ItemHeight(var_Items.AddItem("Item 1")) = 248
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.ItemHeight(AddItem("Item 1")) = 248]
	endwith
oComboBox.Items.AddItem("Item 2")

147
How do I change the visual aspect only for the thumb in the scroll bar, using EBN

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
oComboBox.Template = [Background(388) = 16777216] // oComboBox.Background(388) = 0x1000000
oComboBox.Template = [Background(389) = 33554432] // oComboBox.Background(389) = 0x2000000
oComboBox.Template = [Background(391) = 50331648] // oComboBox.Background(391) = 0x3000000
oComboBox.ColumnAutoResize = false
// oComboBox.Columns.Add("S").Width = 483
var_Column = oComboBox.Columns.Add("S")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 483]
endwith

146
I've seen that you can change the visual appearance for the scroll bar. How can I do that

local oComboBox,var_Column,var_Column1,var_Column2,var_Column3,var_Column4,var_Column5,var_Column6,var_Column7

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
oComboBox.Template = [Background(324) = 16777216] // oComboBox.Background(324) = 0x1000000
oComboBox.Template = [Background(325) = 33554432] // oComboBox.Background(325) = 0x2000000
oComboBox.Template = [Background(327) = 50331648] // oComboBox.Background(327) = 0x3000000
oComboBox.Template = [Background(404) = 15790320] // oComboBox.Background(404) = 0xf0f0f0
oComboBox.Template = [Background(276) = 15790320] // oComboBox.Background(276) = 0xf0f0f0
oComboBox.Template = [Background(511) = 15790320] // oComboBox.Background(511 /*exHSBackH | exToolTipAppearance | exCursorHoverColumn | exDateHeader*/) = 0xf0f0f0
// oComboBox.Columns.Add("S").Width = 32
var_Column = oComboBox.Columns.Add("S")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 32]
endwith
// oComboBox.Columns.Add("Level 1").LevelKey = 1
var_Column1 = oComboBox.Columns.Add("Level 1")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.LevelKey = 1]
endwith
// oComboBox.Columns.Add("Level 2").LevelKey = 1
var_Column2 = oComboBox.Columns.Add("Level 2")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.LevelKey = 1]
endwith
// oComboBox.Columns.Add("Level 3").LevelKey = 1
var_Column3 = oComboBox.Columns.Add("Level 3")
with (oComboBox)
	TemplateDef = [dim var_Column3]
	TemplateDef = var_Column3
	Template = [var_Column3.LevelKey = 1]
endwith
// oComboBox.Columns.Add("E1").Width = 32
var_Column4 = oComboBox.Columns.Add("E1")
with (oComboBox)
	TemplateDef = [dim var_Column4]
	TemplateDef = var_Column4
	Template = [var_Column4.Width = 32]
endwith
// oComboBox.Columns.Add("E2").Width = 32
var_Column5 = oComboBox.Columns.Add("E2")
with (oComboBox)
	TemplateDef = [dim var_Column5]
	TemplateDef = var_Column5
	Template = [var_Column5.Width = 32]
endwith
// oComboBox.Columns.Add("E3").Width = 32
var_Column6 = oComboBox.Columns.Add("E3")
with (oComboBox)
	TemplateDef = [dim var_Column6]
	TemplateDef = var_Column6
	Template = [var_Column6.Width = 32]
endwith
// oComboBox.Columns.Add("E4").Width = 32
var_Column7 = oComboBox.Columns.Add("E4")
with (oComboBox)
	TemplateDef = [dim var_Column7]
	TemplateDef = var_Column7
	Template = [var_Column7.Width = 32]
endwith
oComboBox.ColumnAutoResize = false

145
Is there any option to highligth the column from the cursor - point

local oComboBox,var_Column,var_Column1,var_Column2,var_Column3,var_Column4,var_Column5,var_Column6,var_Column7

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.Template = [Background(32) = 16777216] // oComboBox.Background(32) = 0x1000000
// oComboBox.Columns.Add("S").Width = 32
var_Column = oComboBox.Columns.Add("S")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 32]
endwith
// oComboBox.Columns.Add("Level 1").LevelKey = 1
var_Column1 = oComboBox.Columns.Add("Level 1")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.LevelKey = 1]
endwith
// oComboBox.Columns.Add("Level 2").LevelKey = 1
var_Column2 = oComboBox.Columns.Add("Level 2")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.LevelKey = 1]
endwith
// oComboBox.Columns.Add("Level 3").LevelKey = 1
var_Column3 = oComboBox.Columns.Add("Level 3")
with (oComboBox)
	TemplateDef = [dim var_Column3]
	TemplateDef = var_Column3
	Template = [var_Column3.LevelKey = 1]
endwith
// oComboBox.Columns.Add("E1").Width = 32
var_Column4 = oComboBox.Columns.Add("E1")
with (oComboBox)
	TemplateDef = [dim var_Column4]
	TemplateDef = var_Column4
	Template = [var_Column4.Width = 32]
endwith
// oComboBox.Columns.Add("E2").Width = 32
var_Column5 = oComboBox.Columns.Add("E2")
with (oComboBox)
	TemplateDef = [dim var_Column5]
	TemplateDef = var_Column5
	Template = [var_Column5.Width = 32]
endwith
// oComboBox.Columns.Add("E3").Width = 32
var_Column6 = oComboBox.Columns.Add("E3")
with (oComboBox)
	TemplateDef = [dim var_Column6]
	TemplateDef = var_Column6
	Template = [var_Column6.Width = 32]
endwith
// oComboBox.Columns.Add("E4").Width = 32
var_Column7 = oComboBox.Columns.Add("E4")
with (oComboBox)
	TemplateDef = [dim var_Column7]
	TemplateDef = var_Column7
	Template = [var_Column7.Width = 32]
endwith

144
How do I change the visual aspect of selected item in the drop down filter window, using your EBN technology

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.Template = [Background(20) = 16777216] // oComboBox.Background(20) = 0x1000000
oComboBox.Template = [Background(21) = 1316095] // oComboBox.Background(21) = 0x1414ff
// oComboBox.Columns.Add("Filter").DisplayFilterButton = true
var_Column = oComboBox.Columns.Add("Filter")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.DisplayFilterButton = True]
endwith

143
How do I change the visual aspect of the drop down calendar window, that shows up if I click the drop down filter button, using EBN

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.Template = [Background(8) = 16777216] // oComboBox.Background(8) = 0x1000000
oComboBox.Template = [Background(9) = 16777216] // oComboBox.Background(9) = 0x1000000
oComboBox.Template = [Background(10) = 33554432] // oComboBox.Background(10) = 0x2000000
oComboBox.Template = [Background(11) = 16777216] // oComboBox.Background(11) = 0x1000000
oComboBox.Template = [Background(12) = 15132390] // oComboBox.Background(12) = 0xe6e6e6
oComboBox.Template = [Background(13) = 15132390] // oComboBox.Background(13) = 0xe6e6e6
oComboBox.Template = [Background(14) = 16777216] // oComboBox.Background(14) = 0x1000000
var_Column = oComboBox.Columns.Add("Date")
	var_Column.FilterType = 4
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterDate = true

142
How do I change the visual aspect of the close button in the filter bar, using EBN

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.Template = [Background(1) = 16777216] // oComboBox.Background(1) = 0x1000000
// oComboBox.Columns.Add("Filter").FilterType = 1
var_Column = oComboBox.Columns.Add("Filter")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.FilterType = 1]
endwith
oComboBox.ApplyFilter()

141
How do I change the visual aspect of buttons in the cell, using EBN

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.Template = [Background(2) = 16777216] // oComboBox.Background(2) = 0x1000000
oComboBox.Template = [Background(3) = 33554432] // oComboBox.Background(3) = 0x2000000
oComboBox.SelForeColor = 0x0
oComboBox.ShowFocusRect = false
// oComboBox.Columns.Add("Column 1").Def(2) = true
var_Column = oComboBox.Columns.Add("Column 1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Def(2) = True]
endwith
oComboBox.Items.AddItem("Button 1")
oComboBox.Items.AddItem("Button 2")
oComboBox.Columns.Add("Column 2")

140
How do I change the visual aspect of the drop down filter button, using EBN

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.Template = [Background(0) = 16777216] // oComboBox.Background(0) = 0x1000000
// oComboBox.Columns.Add("Filter").DisplayFilterButton = true
var_Column = oComboBox.Columns.Add("Filter")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.DisplayFilterButton = True]
endwith

139
Is there any function to get the control's data in your x-script format / template

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem("ToTemplate()")

138
How do I enable resizing the columns at runtime

local oComboBox,var_Items,var_Items1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ColumnsAllowSizing = true
oComboBox.MarkSearchColumn = false
oComboBox.HeaderVisible = false
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2")
oComboBox.DrawGridLines = 2
var_Items = oComboBox.Items
	// var_Items.CellCaption(var_Items.AddItem("Item 1"),1) = "Sub Item 1"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(AddItem("Item 1"),1) = "Sub Item 1"]
	endwith
var_Items1 = oComboBox.Items
	// var_Items1.CellCaption(var_Items1.AddItem("Item 2"),1) = "Sub Item 2"
	with (oComboBox)
		TemplateDef = [dim var_Items1]
		TemplateDef = var_Items1
		Template = [var_Items1.CellCaption(AddItem("Item 2"),1) = "Sub Item 2"]
	endwith

137
How do I enable resizing ( changing the height ) the items at runtime

local oComboBox,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ItemsAllowSizing = true
oComboBox.ScrollBySingleLine = true
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem("Item 1")
var_Items = oComboBox.Items
	// var_Items.ItemHeight(var_Items.AddItem("Item 2")) = 48
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.ItemHeight(AddItem("Item 2")) = 48]
	endwith
oComboBox.Items.AddItem("Item 3")

136
How can I sort by multiple columns

local oComboBox,var_Column,var_Column1,var_Column2

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.SingleSort = false
// oComboBox.Columns.Add("C1").SortOrder = 1
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.SortOrder = 1]
endwith
// oComboBox.Columns.Add("C2").SortOrder = 2
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.SortOrder = 2]
endwith
// oComboBox.Columns.Add("C3").SortOrder = 1
var_Column2 = oComboBox.Columns.Add("C3")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.SortOrder = 1]
endwith

135
How can I add several columns to control's sort bar

local oComboBox,var_Column,var_Column1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.SortBarVisible = true
oComboBox.SortBarColumnWidth = 48
// oComboBox.Columns.Add("C1").SortOrder = 1
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.SortOrder = 1]
endwith
// oComboBox.Columns.Add("C2").SortOrder = 2
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.SortOrder = 2]
endwith

134
How can I change the width of the columns being displayed in the sort bar

local oComboBox,var_Column,var_Column1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.SortBarVisible = true
oComboBox.SortBarColumnWidth = 48
// oComboBox.Columns.Add("C1").SortOrder = 1
var_Column = oComboBox.Columns.Add("C1")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.SortOrder = 1]
endwith
// oComboBox.Columns.Add("C2").SortOrder = 2
var_Column1 = oComboBox.Columns.Add("C2")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.SortOrder = 2]
endwith

133
How can I change the height of the sort bar's

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.SortBarVisible = true
oComboBox.SortBarHeight = 48

132
How can I change the sort bar's foreground color

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.SortBarVisible = true
oComboBox.ForeColorSortBar = 0xff

131
How can I change the visual appearance of the control's sort bar, using EBN files

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oComboBox.SortBarVisible = true
oComboBox.BackColorSortBar = 0x1000000
oComboBox.BackColorSortBarCaption = 0x2000000
oComboBox.Appearance = 0

130
How can I change the sort bar's background color

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.SortBarVisible = true
oComboBox.BackColorSortBar = 0xff
oComboBox.BackColorSortBarCaption = 0x80

129
How can I change the default caption being displayed in the control's sort bar

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.SortBarVisible = true
oComboBox.SortBarCaption = "new caption"

128
How can I show the locked / fixed items on the bottom side of the control

local oComboBox,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ShowLockedItems = true
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	// var_Items.LockedItemCount(1) = 2
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.LockedItemCount(1) = 2]
	endwith
	// var_Items.CellCaption(var_Items.LockedItem(1,0),0) = "locked item 1"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(LockedItem(1,0),0) = "locked item 1"]
	endwith
	// var_Items.CellCaption(var_Items.LockedItem(1,1),0) = "locked item 2"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(LockedItem(1,1),0) = "locked item 2"]
	endwith
	var_Items.AddItem("un-locked item")

127
How can I show the locked / fixed items

local oComboBox,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ShowLockedItems = true
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	// var_Items.LockedItemCount(0) = 2
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.LockedItemCount(0) = 2]
	endwith
	// var_Items.CellCaption(var_Items.LockedItem(0,0),0) = "locked item 1"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(LockedItem(0,0),0) = "locked item 1"]
	endwith
	// var_Items.CellCaption(var_Items.LockedItem(0,1),0) = "locked item 2"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(LockedItem(0,1),0) = "locked item 2"]
	endwith
	var_Items.AddItem("un-locked item")

126
How can I hide the locked / fixed items

local oComboBox,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ShowLockedItems = false
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	// var_Items.LockedItemCount(0) = 1
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.LockedItemCount(0) = 1]
	endwith
	// var_Items.CellCaption(var_Items.LockedItem(0,0),0) = "locked item"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(LockedItem(0,0),0) = "locked item"]
	endwith
	var_Items.AddItem("un-locked item")

125
How can I show the control's sort bar

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.SortBarVisible = true

124
How can I change the header's background color, when multiple levels are displayed

local oComboBox,var_Column,var_Column1,var_Column2,var_Column3

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.BackColorLevelHeader = 0xfa
// oComboBox.Columns.Add("S").Width = 32
var_Column = oComboBox.Columns.Add("S")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Width = 32]
endwith
// oComboBox.Columns.Add("Level 1").LevelKey = 1
var_Column1 = oComboBox.Columns.Add("Level 1")
with (oComboBox)
	TemplateDef = [dim var_Column1]
	TemplateDef = var_Column1
	Template = [var_Column1.LevelKey = 1]
endwith
// oComboBox.Columns.Add("Level 2").LevelKey = 1
var_Column2 = oComboBox.Columns.Add("Level 2")
with (oComboBox)
	TemplateDef = [dim var_Column2]
	TemplateDef = var_Column2
	Template = [var_Column2.LevelKey = 1]
endwith
// oComboBox.Columns.Add("Level 3").LevelKey = 1
var_Column3 = oComboBox.Columns.Add("Level 3")
with (oComboBox)
	TemplateDef = [dim var_Column3]
	TemplateDef = var_Column3
	Template = [var_Column3.LevelKey = 1]
endwith

123
How do I expand automatically the items while user types characters to searching for something ( incremental searching )

local oComboBox,var_Column,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ExpandOnSearch = true
oComboBox.LinesAtRoot = -1
oComboBox.AutoSearch = true
// oComboBox.Columns.Add("Column").AutoSearch = 1
var_Column = oComboBox.Columns.Add("Column")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.AutoSearch = 1]
endwith
var_Items = oComboBox.Items
	var_Items.InsertItem(var_Items.InsertItem(var_Items.AddItem("text"),null,"some text"),null,"another text")
	var_Items.InsertItem(var_Items.InsertItem(var_Items.AddItem("text"),null,"some text"),null,"another text")

122
Do you have some function to load data from a safe array

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.PutItems(oComboBox.GetItems(0))

121
Do you have some function to retrieve all items to a safe array

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.PutItems(oComboBox.GetItems(0))
oComboBox.Items.AddItem(1)
oComboBox.PutItems(oComboBox.GetItems(0))
oComboBox.Items.AddItem(2)
oComboBox.PutItems(oComboBox.GetItems(0))
oComboBox.Items.AddItem(3)

120
How can I hide a column

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
// oComboBox.Columns.Add("Hidden").Visible = false
var_Column = oComboBox.Columns.Add("Hidden")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.Visible = False]
endwith
oComboBox.Columns.Add("2")
oComboBox.Columns.Add("3")
oComboBox.Columns.Add("4")
oComboBox.Columns.Add("5")

119
I've seen that the width of the tooltip is variable. Can I make it larger

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ToolTipWidth = 328
// oComboBox.Columns.Add("tootip").ToolTip = "this is a tooltip that should be very very very very very very very long"
var_Column = oComboBox.Columns.Add("tootip")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.ToolTip = "this is a tooltip that should be very very very very very very very long"]
endwith

118
How do I disable showing the tooltip for all control
local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ToolTipDelay = 0
// oComboBox.Columns.Add("tootip").ToolTip = "this is a tooltip assigned to a column"
var_Column = oComboBox.Columns.Add("tootip")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.ToolTip = "this is a tooltip assigned to a column"]
endwith

117
How do I let the tooltip being displayed longer

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ToolTipPopDelay = 10000
// oComboBox.Columns.Add("tootip").ToolTip = "this is a tooltip assigned to a column"
var_Column = oComboBox.Columns.Add("tootip")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.ToolTip = "this is a tooltip assigned to a column"]
endwith

116
How do I show the tooltip quicker

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.ToolTipDelay = 1
// oComboBox.Columns.Add("tootip").ToolTip = "this is a tooltip assigned to a column"
var_Column = oComboBox.Columns.Add("tootip")
with (oComboBox)
	TemplateDef = [dim var_Column]
	TemplateDef = var_Column
	Template = [var_Column.ToolTip = "this is a tooltip assigned to a column"]
endwith

115
How do I change the caption being displayed in the control's filter bar

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.FilterBarCaption = "your filter caption"
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
oComboBox.ApplyFilter()

114
How do I search case sensitive, using your incremental search feature

local oComboBox,var_Column,var_Column1,var_Columns,var_Items,var_Items1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.AutoSearch = true
oComboBox.ASCIILower = ""
var_Columns = oComboBox.Columns
	// var_Columns.Add("exStartWith").AutoSearch = 0
	var_Column = var_Columns.Add("exStartWith")
	with (oComboBox)
		TemplateDef = [dim var_Column]
		TemplateDef = var_Column
		Template = [var_Column.AutoSearch = 0]
	endwith
	// var_Columns.Add("exContains").AutoSearch = 1
	var_Column1 = var_Columns.Add("exContains")
	with (oComboBox)
		TemplateDef = [dim var_Column1]
		TemplateDef = var_Column1
		Template = [var_Column1.AutoSearch = 1]
	endwith
var_Items = oComboBox.Items
	// var_Items.CellCaption(var_Items.AddItem("text"),1) = "another text"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(AddItem("text"),1) = "another text"]
	endwith
var_Items1 = oComboBox.Items
	// var_Items1.CellCaption(var_Items1.AddItem("text"),1) = "another text"
	with (oComboBox)
		TemplateDef = [dim var_Items1]
		TemplateDef = var_Items1
		Template = [var_Items1.CellCaption(AddItem("text"),1) = "another text"]
	endwith

113
How do I disable the control

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Enabled = false

112
How do I enable the incremental search feature within a column

local oComboBox,var_Column,var_Column1,var_Columns,var_Items,var_Items1

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.AutoSearch = true
var_Columns = oComboBox.Columns
	// var_Columns.Add("exStartWith").AutoSearch = 0
	var_Column = var_Columns.Add("exStartWith")
	with (oComboBox)
		TemplateDef = [dim var_Column]
		TemplateDef = var_Column
		Template = [var_Column.AutoSearch = 0]
	endwith
	// var_Columns.Add("exContains").AutoSearch = 1
	var_Column1 = var_Columns.Add("exContains")
	with (oComboBox)
		TemplateDef = [dim var_Column1]
		TemplateDef = var_Column1
		Template = [var_Column1.AutoSearch = 1]
	endwith
var_Items = oComboBox.Items
	// var_Items.CellCaption(var_Items.AddItem("text"),1) = "another text"
	with (oComboBox)
		TemplateDef = [dim var_Items]
		TemplateDef = var_Items
		Template = [var_Items.CellCaption(AddItem("text"),1) = "another text"]
	endwith
var_Items1 = oComboBox.Items
	// var_Items1.CellCaption(var_Items1.AddItem("text"),1) = "another text"
	with (oComboBox)
		TemplateDef = [dim var_Items1]
		TemplateDef = var_Items1
		Template = [var_Items1.CellCaption(AddItem("text"),1) = "another text"]
	endwith

111
How do I call your x-script language

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
var_Column = oComboBox.ExecuteTemplate("Columns.Add(`Column`)")
	var_Column.HeaderStrikeOut = true
	var_Column.HeaderBold = true

110
How do I call your x-script language

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.Template = "Columns.Add(`Column`).HTMLCaption = `<b>C</b>olumn`"

109
How do I show alternate rows in different background color

local oComboBox,var_Items

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.BackColorAlternate = 0xf0f0f0
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	var_Items.AddItem("Item 1")
	var_Items.AddItem("Item 2")
	var_Items.AddItem("Item 3")
	var_Items.AddItem("Item 4")
	var_Items.AddItem("Item 5")

108
How do I enlarge the drop down filter window

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.FilterBarDropDownHeight = "-320"
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterBarDropDownWidth = "-320"
oComboBox.Items.AddItem("Item 1")
oComboBox.Items.AddItem("Item 2")

107
How do I filter programatically the control

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 3
	var_Column.Filter = "Item*"
oComboBox.Items.AddItem("Item 1")
oComboBox.Items.AddItem("")
oComboBox.Items.AddItem("Item 2")
oComboBox.ApplyFilter()

106
How do I change the font of the control's filterbar

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.FilterBarFont.Size = 20
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
oComboBox.ApplyFilter()

105
Can I apply an EBN skin to the control's filter bar so I can change its visual appearance

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.FilterBarBackColor = 0x1000000
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
oComboBox.ApplyFilter()

104
How do I change the background color of the control's filterbar

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.FilterBarBackColor = 0xf0f0f0
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
oComboBox.ApplyFilter()

103
How do I change the foreground color of the control's filterbar

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.FilterBarForeColor = 0xff
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
oComboBox.ApplyFilter()

102
How do I change the height of the control's filterbar

local oComboBox,var_Column

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.FilterBarHeight = 32
var_Column = oComboBox.Columns.Add("Column")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 1
oComboBox.ApplyFilter()

101
How do I change the header's foreground color

local oComboBox

oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject
oComboBox.HeaderForeColor = 0xff
oComboBox.Columns.Add("Column 1")
oComboBox.Columns.Add("Column 2")
oComboBox.Items.AddItem("Item 1")